ASP.NET MVC RenderSection Kullanımı
Merhabalar,
_Layout.cshtml gibi bir layout yapınız varsa örnek bir kullanım aşağıdaki gibi olur.
_Layout.cshtml
< html >
< body >
@RenderBody()
@RenderSection("slider_scripts", required: false)
< / body >
< /html >
Index.cshtml
@section slider_scripts{
< script type ="text/javascript" >alert('Merhaba!');< /script >
}
Çok kolay ve çok kullanışlı bir kullanım.
İyi çalışmalar,
Recep.